-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiauth #3
base: master
Are you sure you want to change the base?
Multiauth #3
Conversation
* Fixing guidebook not resizable from left and right issue 34504 in space-wizards/space-station-14 needs this fix * update fix guideBood not resizable a safer and more error resistent solution to space-wizards/space-station-14#34504 * Mask DragMode.Move --------- Co-authored-by: ElectroJr <[email protected]>
…redTree already was called with _currentPrototype empty (#5649) Co-authored-by: pa.pecherskij <[email protected]>
Apparently it can clip and the buffer is really just there so we despawn 'at some point' and rather than hunching over my debugger for potentially an hour this is easier and almost no impact. I've also considered flagging some audio as "play the full thing" if someone misses the start of it but need to thonk on that one a bit in future.
* Add another lookup overload * Fix RenderInRenderTarget See the linked issue for what happens. * Also this one * stuff * Fix stencilling * fixes * mix blend * fix * blur fixes * Tile flag * Minor tweak * Fixes * Render state fixes * Fixes * Fix stupidity * More state render bug fixes * MapUid on overlay draw * Remove blur comment * Fixes * Fixes * Remove * Engine vibe
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 52 out of 52 changed files in this pull request and generated 1 comment.
Comments suppressed due to low confidence (1)
Robust.Client/Graphics/Clyde/Clyde.Rendering.cs:420
- When disabling the scissor test, a call to CheckGlError() is omitted. For consistent error checking and debugging, consider invoking CheckGlError() after disabling the state.
else { GL.Disable(EnableCap.ScissorTest); }
var userId = Guid.Parse(reader.GetString(0)); | ||
var userName = reader.GetString(1); | ||
var token = reader.GetString(2); | ||
serverUrl = reader.GetString(4); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hardcoding the column index when retrieving the serverUrl makes the code fragile if the query order ever changes. Consider using named columns or defined constants to ensure the correct value is extracted even if the SQL query is updated.
var userId = Guid.Parse(reader.GetString(0)); | |
var userName = reader.GetString(1); | |
var token = reader.GetString(2); | |
serverUrl = reader.GetString(4); | |
var userId = Guid.Parse(reader.GetString(reader.GetOrdinal("UserId"))); | |
var userName = reader.GetString(reader.GetOrdinal("UserName")); | |
var token = reader.GetString(reader.GetOrdinal("Token")); | |
serverUrl = reader.GetString(reader.GetOrdinal("ServerUrl")); |
Copilot is powered by AI, so mistakes are possible. Review output carefully before use.
No description provided.